LET

Syntax: [LET] variable=expression
Location: QL ROM

The command LET assigns a specific value to the specified variable, which can be of any type.

The command may actually be omitted altogether.

Example:
LET x=100+10*20   Assigns the value 300 to the variable x.
x=100+10*20       Exactly the same.

CROSS-REFERENCE:
READ and INPUT also allow you to assign a value to a variable.
